github.com/google/go-cmp/cmp.reportRecord.Value (field)

26 uses

	github.com/google/go-cmp/cmp (current package)
		report_compare.go#L249: 					isZero = r.Value.ValueX.IsZero() || r.Value.ValueY.IsZero()
		report_compare.go#L251: 					isZero = r.Value.ValueX.IsZero()
		report_compare.go#L253: 					isZero = r.Value.ValueY.IsZero()
		report_compare.go#L260: 			if r.Value.NumIgnored > 0 && r.Value.NumSame+r.Value.NumDiff == 0 {
		report_compare.go#L267: 			if out := opts.FormatDiff(r.Value, ptrs); out != nil {
		report_compare.go#L298: 				if r := recs[numLo].Value; r.NumIgnored > 0 && r.NumSame+r.NumDiff == 0 {
		report_compare.go#L304: 				if r := recs[numEqual-numHi-1].Value; r.NumIgnored > 0 && r.NumSame+r.NumDiff == 0 {
		report_compare.go#L315: 				out := opts.WithDiffMode(diffIdentical).FormatDiff(r.Value, ptrs)
		report_compare.go#L327: 				out := opts.WithDiffMode(diffIdentical).FormatDiff(r.Value, ptrs)
		report_compare.go#L338: 			case opts.CanFormatDiffSlice(r.Value):
		report_compare.go#L339: 				out := opts.FormatDiffSlice(r.Value)
		report_compare.go#L342: 			case r.Value.NumChildren == r.Value.MaxDepth:
		report_compare.go#L343: 				outx := opts.WithDiffMode(diffRemoved).FormatDiff(r.Value, ptrs)
		report_compare.go#L344: 				outy := opts.WithDiffMode(diffInserted).FormatDiff(r.Value, ptrs)
		report_compare.go#L347: 					outx = opts2.WithDiffMode(diffRemoved).FormatDiff(r.Value, ptrs)
		report_compare.go#L348: 					outy = opts2.WithDiffMode(diffInserted).FormatDiff(r.Value, ptrs)
		report_compare.go#L359: 				out := opts.FormatDiff(r.Value, ptrs)
		report_compare.go#L419: 		switch rv := r.Value; {
		report_value.go#L50: 	Value *valueNode
		report_value.go#L59: 		parent.Records = append(parent.Records, reportRecord{Key: reflect.ValueOf(s.Name()), Value: child})
		report_value.go#L62: 		parent.Records = append(parent.Records, reportRecord{Value: child})
		report_value.go#L65: 		parent.Records = append(parent.Records, reportRecord{Key: s.Key(), Value: child})